home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 32
/
Amiga Format AFCD32 (Nov 1998, Issue 117).iso
/
-seriously_amiga-
/
programming
/
other
/
cgraphx
/
c
/
examples
/
smakefile
< prev
next >
Wrap
Makefile
|
1998-08-10
|
469b
|
26 lines
SCOPTS = UNSCHAR STRMERGE NOSTKCHK PARMS=REGISTER OPTIMIZE
LIBS = LIB:cgraphx.lib LIB:sc.lib LIB:amiga.lib
SLO = SC SD ND
.c.o:
sc $*.c $(SCOPTS) OBJNAME=$@
EXAMPLES = Window ScreenModeReq
all: $(EXAMPLES)
clean:
-Delete $(EXAMPLES) \#?.(info|o) QUIET
Window: Window.o
slink FROM LIB:c.o $*.o $(SLO) LIB $(LIBS) TO $@
Window.o: Window.c
ScreenModeReq: ScreenModeReq.o
slink FROM LIB:c.o $*.o $(SLO) LIB $(LIBS) TO $@
ScreenModeReq.o: ScreenModeReq.c